home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n04.arc / FILMATCH.BAT < prev    next >
DOS Batch File  |  1989-01-31  |  492b  |  15 lines

  1. ECHO OFF
  2. REM The next two lines delete any OLD files that don't
  3. REM have a matching CSV file.
  4. RENAME *.OLD *.
  5. FOR %%h IN (*.) DO IF NOT EXIST %%h.CSV ERASE %%h
  6. REM Restore the OLD extension to the old files and 
  7. REM remove the extension from the CSV files.
  8. RENAME *. *.OLD
  9. RENAME *.CSV *.
  10. REM For any CSV file that doesn't have a corresponding OLD
  11. REM file, create one by copying a blank template.
  12. FOR %%h IN (*.) DO IF NOT EXIST %%h.OLD COPY FILE.TMP %%h.OLD
  13. RENAME *. *.CSV
  14.  
  15.